home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / misc / e-n / intuicookiereq / install < prev    next >
Text File  |  1995-12-17  |  1KB  |  63 lines

  1. (complete 0)
  2.  
  3. (set destdir
  4.     (askdir
  5.         (prompt "Where do you want to install IntuiCookie?  No new drawer will be created.")
  6.         (help @askdir-help)
  7.         (default "SYS:WBStartup")
  8.     )
  9. )
  10.  
  11. (complete 20)
  12.  
  13. (copyfiles
  14.     (prompt "Copying IntuiCookie to " destdir)
  15.     (help @copyfiles-help)
  16.     (source "")
  17.     (dest destdir)
  18.     (pattern "IntuiCookie")
  19.     (infos)
  20.     (files)
  21. )
  22.  
  23. (complete 40)
  24.  
  25. (set destcookiedir
  26.     (askdir
  27.         (prompt "Where do you want to install the data drawer?  I suggest you create a drawer (example: <IntuiCookie>) on your HD first.")
  28.         (help "This drawer holds the cookie and hash files")
  29.         (default "Work:IntuiCookie")
  30.     )
  31. )
  32.  
  33. (complete 60)
  34.  
  35. (copyfiles
  36.     (prompt "Copying datafiles to " destcookiedir)
  37.     (help @copyfiles-help)
  38.     (source "")
  39.     (dest destcookiedir)
  40.     (pattern "data")
  41.     (infos)
  42. )
  43.  
  44. (complete 80)
  45.  
  46. (tooltype
  47.     (prompt "Setting tooltypes")
  48.     (help "This will set the COOKIEFILE and HASHFILE tooltypes, which tell IntuiCookie where to find its data files.")
  49.     (dest (tackon destdir "IntuiCookie"))
  50.     (settooltype "COOKIEFILE" (tackon destcookiedir "data/cookies"))
  51.     (confirm)
  52. )
  53.  
  54. (complete 90)
  55.  
  56. (tooltype
  57.     (prompt "")
  58.     (dest (tackon destdir "IntuiCookie"))
  59.     (settooltype "HASHFILE" (tackon destcookiedir "data/cookies.hash"))
  60. )
  61.  
  62. (complete 100)
  63.